Orchestration SDK 5.13.2
Loading...
Searching...
No Matches
RemoteAuthenticationDelegate.h
Go to the documentation of this file.
1
2//
3// Copyright (c) since 1999. VASCO DATA SECURITY
4// All rights reserved. http://www.vasco.com
5//
7
8#import <Foundation/Foundation.h>
9#import <MSSOrchestration/RemoteAuthenticationDisplayDataCallerDelegate.h>
10#import <MSSOrchestration/OrchestrationUser.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
14@class PasswordError;
15@class RemoteAuthenticationResult;
16
26NS_REFINED_FOR_SWIFT
27@protocol RemoteAuthenticationDelegate <NSObject>
28
29
38- (void)onRemoteAuthenticationForOrchestrationUser:(OrchestrationUser *)user dataToDisplay:(NSString *)dataToDisplay caller:(id <RemoteAuthenticationDisplayDataCallerDelegate>)caller;
39
46- (void)onRemoteAuthenticationStepCompleteWithCommand:(NSString *)command;
47
53- (void)onRemoteAuthenticationSuccessWithResult:(RemoteAuthenticationResult *)result;
54
58NS_REFINED_FOR_SWIFT
65
71- (void)onRemoteAuthenticationSessionOutdated:(RemoteAuthenticationSessionReason)reason;
72
77- (void)onRemoteAuthenticationAbortedWithCommand:(NSString *_Nullable)command;
78
84- (void)onRemoteAuthenticationPasswordError:(PasswordError *)error;
85
86@end
87
88NS_ASSUME_NONNULL_END
Definition OrchestrationUser.h:17
Definition PasswordError.h:18
RemoteAuthenticationSessionReason
Definition RemoteAuthenticationDelegate.h:59
@ RemoteAuthenticationSessionExpired
Definition RemoteAuthenticationDelegate.h:60
@ RemoteAuthenticationSessionAccepted
Definition RemoteAuthenticationDelegate.h:61
@ RemoteAuthenticationSessionRefused
Definition RemoteAuthenticationDelegate.h:62
@ RemoteAuthenticationSessionUnknown
Definition RemoteAuthenticationDelegate.h:63